home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 2
/
Apprentice-Release2.iso
/
Tools
/
MPW
/
gzip 1.2.2
/
primos
/
include
/
fcntl.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-06-22
|
329 b
|
23 lines
|
[
TEXT/MPS
]
/*
** fcntl.h
**
** Emulation of the Unix fcntl.h header file for PRIMOS
**
** Author: Peter Eriksson <pen@lysator.liu.se>
*/
#ifndef __FCNTL_H__
#define __FCNTL_H__
#define O_RDONLY 0
#define O_WRONLY 1
#define O_RDWR 2
#define O_BINARY 0
#define O_EXCL 0
#define O_NDELAY 0
#define O_CREAT 0
#define O_TRUNC 0
#endif